home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / windownt / help.zip / HELPCONV / MAKEFILE < prev    next >
Text File  |  1992-11-06  |  515b  |  25 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2. DLL_SWITCH=NO_DLL
  3. !include <ntwin32.mak>
  4.  
  5. # This line allows NMAKE to work as well
  6.  
  7. all: brace.exe help.exe
  8.  
  9. # Update the object files if necessary
  10.  
  11. lex_yy.obj: lex_yy.c
  12.     $(cc) $(cflags) $(cvars) $(*B).c
  13.  
  14. brace.obj: brace.c
  15.     $(cc) $(cflags) $(cvars) $(*B).c
  16.  
  17.  
  18. brace.exe: brace.obj 
  19.     $(link) $(conflags) -out:brace.exe brace.obj $(conlibs)
  20.  
  21. help.exe: lex_yy.obj
  22.     $(link) $(conflags) -out:help.exe lex_yy.obj lexlib.lib $(conlibs)
  23.  
  24.  
  25.